DateTimeEditors for WinRT
Setting the Calendar Start and End Date

You can change the dates that appear in the drop-down calendar by setting the C1DatePicker.DisplayDateStart and C1DatePicker.DisplayDateEnd properties. In this topic, you will learn how to change the start and end dates in code.

In Code

To change the dates that appear in the calendar, complete the following steps:

  1. Open the MainWindow.xaml.cs page.
  2. Place the following code beneath the C1DatePicker_Loaded event:
Visual Basic
Copy Code
Dim dateStringStart As String = "02/05/2012"
Dim dateStringEnd As String = "02/25/2012"
C1DatePicker1.DisplayDateStart = DateTime.Parse(dateStringStart)
C1DatePicker1.DisplayDateEnd = DateTime.Parse(dateStringEnd)

C#
Copy Code
string dateStringStart = "02/05/2012";
string dateStringEnd = "02/25/2012";
C1DatePicker1.DisplayDateStart = DateTime.Parse(dateStringStart);
C1DatePicker1.DisplayDateEnd = DateTime.Parse(dateStringEnd);
  1. Run the project.

This Topic Illustrates the Following:

In this topic, you set the C1DatePicker.DisplayDateStart and C1DatePicker.DisplayDateEnd properties to determine the dates that appear in the drop-down calendar. The final result will resemble the following image:

 

See Also

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback